11c3f5b0b1216237c1c4a74c2f105a314760e594,GMapsFX/src/main/java/com/lynden/gmapsfx/javascript/object/MapShape.java,MapShape,getDraggable,#,53

Before Change


    
    // Returns whether this circle can be dragged by the user.
    public boolean getDraggable() {
        return (boolean) invokeJavascript("getDraggable");
    }
    
    // Returns whether this circle can be edited by the user.

After Change


    
    // Returns whether this circle can be dragged by the user.
    public boolean getDraggable() {
        return checkBoolean(invokeJavascript("getDraggable"), Boolean.FALSE);
    }
    
    // Returns whether this circle can be edited by the user.